body #header.intelligent {
    top: 0;
}

body {
    padding: 0;
    margin: 0;
}

.container-visualizer {
    max-width: 1200px;
    min-width: 320px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

#img-block {
    position: relative;
}

#main-img {
    line-height: 190px;
    text-align: center;
}

#overlay {
    position: absolute;
    background-color: #7A3A38;
    height: 100%;
    width: 100%;
}

#img-block > img#main-img {
    position: relative;
    z-index: 10;
    width: 75%;
}

#color-picker {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    right: 25%;
    background-color: rgba(200, 200, 200, 0.6);
    z-index: 11;
    padding-bottom: 25px;
}

#color-picker .color {
    margin: 5px;
    float: left;
    height: 20px;
    width: 20px;
    cursor: pointer;
}

#color-picker .color.active{
        margin: 3px;
    border: 2px solid #f5f3f0;
    box-sizing: content-box;

}

#color-picker #selected-color-name {
    position: absolute;
    left: 0;
    bottom: 3px;
    color: #2c3740;
}

#color-picker #selected-color-name > div {
    float: left;
    margin-right: 5px;
    margin-left: 5px;
}

#color-picker div#selected-color.color {
    margin: 0;
    cursor: default;
}

#img-picker {
    position: absolute;
    display: inline-block;
    bottom: 0;
    right: 25%;
    left: 0;
    background-color: rgba(200, 200, 200, 0.6);
    z-index: 11;
}

#img-picker > .img {
    margin: 5px;
    height: 60px;
    width: 60px;
    float: left;
    background-size: cover;
    background-color: #7D7070;
    background-position: center center;
    cursor: pointer;
}

#options-picker {
    position: absolute;
    display: inline-block;
    bottom: 0;
    right: 0;
    left: 75%;
    top: 0;
    background-color: rgba(200, 200, 200, 0.5);
    z-index: 11;
}

#options-picker .option {
    background-color: #393939;;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    box-sizing: border-box;
    height: 25%;
    cursor: pointer;
    display: table;
}

#options-picker .option.active {
    background-color: rgb(12, 10, 9);
}

#options-picker .option.disabled {
    background-color: rgba(51, 42, 35, 0.4);
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
}

#loading {
    display: none;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
}

#loading > img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -300px;
    height: 600px;
    width: 600px;
}

#options1,
#options2,
#options3,
#options4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 10;
}

@media (min-width: 600px) {
    /*.container {
        margin-top: 20px;
        margin-bottom: 20px;
    }*/
    #options-picker .option {
        display: table;
        width: 100%;
    }
    #options-picker .option > div {
        vertical-align: middle;
        display: table-cell;
        text-align: center;
        border: 10px solid #f5f3f0;
        border-left: 20px solid #f5f3f0;
        border-right: 20px solid #f5f3f0;
    }
    #options-picker .option:first-of-type > div {
        border-top: 0;
    }
    #options-picker .option:last-of-type > div {
        border-bottom: 0;
    }
    #loading {
        width: 75%;
    }
}

@media (max-width: 600px) {
    #color-picker,
    #img-picker {
        position: relative;
        width: 100%;
        margin-bottom: -4px;
        left: 0;
    }
    #options-picker {
        position: relative;
        width: 100%;
        left: 0;
    }
    #img-block {
        margin-bottom: -4px;
    }
    #img-block > img#main-img {
        width: 100%;
    }
    #options1,
    #options2,
    #options3,
    #options4 {
        width: 100%;
    }
    #options-picker .option {
        font-size: 15px;
        padding: 5px 5px;
        display: inline-block;
        margin: 5px;
        height: auto;
    }
    #loading {
        width: 100%;
    }
}